home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 8605 / 8605.xpi / chrome / content / status.js < prev    next >
Text File  |  2009-02-01  |  334b  |  11 lines

  1. function ro_cvds_initStatus()
  2. {
  3.     status = window.opener.ro_cvds_daInstance.status;
  4.     if (!status.error)
  5.         prefix = "OK";
  6.     else
  7.         prefix = "Error";
  8.     document.getElementById("statusCode").setAttribute("value",prefix+":");
  9.     document.getElementById("statusMsg").setAttribute("value",status.message);
  10. }
  11.